home *** CD-ROM | disk | FTP | other *** search
/ CD Classic 39 / CD CLASSIC #39 (1998).iso / EMPRESA / act / ACETRIAL.EXE / ACT!.LO9 / ACT!.LOD
Text File  |  1997-07-03  |  3KB  |  88 lines

  1. // Load file for ACT! for Windows CE - For first time use.
  2. // Write registry keys under our "home" (signified by '~') key.
  3.  
  4. // main registry key
  5. //regKeyCreate ~ CurrentVersion 0
  6.  
  7. // "System" key
  8. //regKeyCreate ~ CurrentVersion\System 0
  9. //regString ~ CurrentVersion\System 0 "InstallDir" "\Program Files\ACT!"
  10. // In the statement, can use %P for the installation directory, instead of "\Program Files\ACT!"
  11.  
  12. // Create the Home registry key.
  13. regKeyCreate ~ ~ 1
  14. // Add a FirstTime entry.
  15. regString ~ ~ 1 "FirstTime" "1"
  16.  
  17. // Copy the files from the PC to the Pegasus
  18. // Usage: copy <source dir> <dest dir> <filename>
  19. //        copyShared <source dir> <dest dir> <filename>
  20.  
  21. // The application
  22. //copy . . act.exe
  23. copy . \Windows act.exe
  24.  
  25. // The help files
  26. copy . \Windows "ACT! Help.htc"
  27. copy . \Windows ACTACONT.HTP
  28. copy . \Windows ACTAGRP.HTP
  29. copy . \Windows ACTALARM.HTP
  30. copy . \Windows ACTANOTE.HTP
  31. copy . \Windows ACTBDATA.HTP
  32. copy . \Windows ACTCALV.HTP
  33. copy . \Windows ACTCGRPM.HTP
  34. copy . \Windows ACTCLRA.HTP
  35. copy . \Windows ACTCONFC.HTP
  36. copy . \Windows ACTCONTI.HTP
  37. copy . \Windows ACTCONTV.HTP
  38. copy . \Windows ACTCREAT.HTP
  39. copy . \Windows ACTCVLAY.HTP
  40. copy . \Windows ACTDATAX.HTP
  41. copy . \Windows ACTDELC.HTP
  42. copy . \Windows ACTDELG.HTP
  43. copy . \Windows ACTDELN.HTP
  44. copy . \Windows ACTDIAL.HTP
  45. copy . \Windows ACTDIFFS.HTP
  46. copy . \Windows ACTENOTE.HTP
  47. copy . \Windows ACTFCONT.HTP
  48. copy . \Windows ACTGRPV.HTP
  49. copy . \Windows ACTGSTAR.HTP
  50. copy . \Windows ACTGVLAY.HTP
  51. copy . \Windows ACTINBOX.HTP
  52. copy . \Windows ACTKEYS.HTP
  53. copy . \Windows ACTLAY.HTP
  54. copy . \Windows ACTLISTV.HTP
  55. copy . \Windows ACTMYREC.HTP
  56. copy . \Windows ACTNOTES.HTP
  57. copy . \Windows ACTPDATA.HTP
  58. copy . \Windows ACTRECC.HTP
  59. copy . \Windows ACTRECD.HTP
  60. copy . \Windows ACTRESCH.HTP
  61. copy . \Windows ACTRHIST.HTP
  62. copy . \Windows ACTSCH.HTP
  63. copy . \Windows ACTSCHA.HTP
  64. copy . \Windows ACTSCHP.HTP
  65. copy . \Windows ACTSCHR.HTP
  66. copy . \Windows ACTSDATA.HTP
  67. copy . \Windows ACTSDATE.HTP
  68. copy . \Windows ACTSGRPM.HTP
  69. copy . \Windows ACTSNAME.HTP
  70. copy . \Windows ACTSPREF.HTP
  71. copy . \Windows ACTSSCH.HTP
  72. copy . \Windows ACTSYSR.HTP
  73. copy . \Windows ACTTOOLB.HTP
  74. copy . \Windows ACTVIEWH.HTP
  75. copy . \Windows ACTVIEWL.HTP
  76. copy . \Windows ACTWIND.HTP
  77.  
  78.  
  79. // Create the shortcuts.
  80. CreateShortcut \Windows\Desktop  "ACT!.lnk" . act.exe
  81. CreateShortcut \Windows\Programs "ACT!.lnk" . act.exe
  82. CreateShortcut "\Program Files" "ACT!.lnk" . act.exe
  83.  
  84.  
  85. // Exit the script
  86. exit
  87.  
  88.